home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 25 / CU Amiga Magazine's Super CD-ROM 25 (1998)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1998-08].iso / CUCD / Programming / ixemul / sdk / man / cat3 / memmove.0 < prev    next >
Encoding:
Text File  |  1998-06-15  |  1003 b   |  28 lines

  1.  
  2. MEMMOVE(3)                 UNIX Programmer's Manual                 MEMMOVE(3)
  3.  
  4. NNAAMMEE
  5.      mmeemmmmoovvee - copy byte string
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<ssttrriinngg..hh>>
  9.  
  10.      _v_o_i_d _*
  11.      mmeemmmmoovvee(_v_o_i_d _*_d_s_t, _c_o_n_s_t _v_o_i_d _*_s_r_c, _s_i_z_e___t _l_e_n)
  12.  
  13. DDEESSCCRRIIPPTTIIOONN
  14.      The mmeemmmmoovvee() function copies _l_e_n bytes from string _s_r_c to string _d_s_t.
  15.      The two strings may overlap; the copy is always done in a non-destructive
  16.      manner.
  17.  
  18. RREETTUURRNN VVAALLUUEESS
  19.      The mmeemmmmoovvee() function returns the original value of _d_s_t.
  20.  
  21. SSEEEE AALLSSOO
  22.      bcopy(3),  memccpy(3),  memcpy(3),  strcpy(3)
  23.  
  24. SSTTAANNDDAARRDDSS
  25.      The mmeemmmmoovvee() function conforms to ANSI C3.159-1989 (``ANSI C'').
  26.  
  27. BSD Experimental                 June 29, 1991                               1
  28.